GValue *value,
GParamSpec *pspec);
-static AtkObject *gtk_assistant_get_accessible (GtkWidget *widget);
-
static void gtk_assistant_buildable_interface_init (GtkBuildableIface *iface);
static GObject *gtk_assistant_buildable_get_internal_child (GtkBuildable *buildable,
GtkBuilder *builder,
static GList* find_page (GtkAssistant *assistant,
GtkWidget *page);
+GType _gtk_assistant_accessible_get_type (void);
+
enum
{
CHILD_PROP_0,
widget_class->map = gtk_assistant_map;
widget_class->unmap = gtk_assistant_unmap;
widget_class->delete_event = gtk_assistant_delete_event;
- widget_class->get_accessible = gtk_assistant_get_accessible;
+
+ gtk_widget_class_set_accessible_type (widget_class, _gtk_assistant_accessible_get_type ());
container_class->add = gtk_assistant_add;
container_class->remove = gtk_assistant_remove;
{
}
-static AtkObject *
-gtk_assistant_get_accessible (GtkWidget *widget)
-{
- AtkObject *obj;
-
- obj = (AtkObject*)g_object_new (_gtk_assistant_accessible_get_type (), NULL);
- atk_object_initialize (obj, widget);
-
- return obj;
-}
-
/* buildable implementation */
static GtkBuildableIface *parent_buildable_iface;